home *** CD-ROM | disk | FTP | other *** search
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/test/Changelo,v
- retrieving revision 1.3
- diff -c -r1.3 Changelo
- *** 1.3 1992/11/08 00:42:33
- --- Changelo 1993/05/21 15:35:39
- ***************
- *** 40,42 ****
- --- 40,48 ----
- (i ran this test on an Hp-Snake, A Dec-Alpha, A Sony-Risc and
- all of them agree).
- ---------------------- Patchlevel 05 --------------------------------------
- +
- + tstring.c:: ++jrb
- + took out bogus test for memcmp: signedness of host char type
- + should not effect lexicograhical ordering.
- +
- + ---------------------- Patchlevel 06 --------------------------------------
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/test/PatchLev.h,v
- retrieving revision 1.5
- diff -c -r1.5 PatchLev.h
- *** 1.5 1992/11/08 00:42:33
- --- PatchLev.h 1993/05/21 15:35:42
- ***************
- *** 1,5 ****
-
- ! #define PatchLevel "05"
-
- /*
- *
- --- 1,5 ----
-
- ! #define PatchLevel "06"
-
- /*
- *
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/test/SymbolicRevs,v
- retrieving revision 1.5
- diff -c -r1.5 SymbolicRevs
- *** 1.5 1992/11/08 00:42:33
- --- SymbolicRevs 1993/05/21 15:35:44
- ***************
- *** 3,5 ****
- --- 3,6 ----
- V3 to all
- V4 to all
- V5 to all
- + V6 to all
- ===================================================================
- RCS file: /net/acae127/home/bammi/etc/src/master/atari/test/tstring.c,v
- retrieving revision 1.1
- diff -c -r1.1 tstring.c
- *** 1.1 1992/03/26 21:49:31
- --- tstring.c 1993/05/21 15:35:45
- ***************
- *** 452,461 ****
- --- 452,466 ----
- check(memcmp("abcd", "abce", 4) < 0, 3); /* Honestly unequal. */
- check(memcmp("abce", "abcd", 4) > 0, 4);
- check(memcmp("alph", "beta", 4) < 0, 5);
- +
- + #if 0 /* signedness should not effect lexicograhical ordering */
- if (charsigned) /* Sign-bit comparison. */
- check(memcmp("a\203", "a\003", 2) < 0, 6);
- else
- check(memcmp("a\203", "a\003", 2) > 0, 6);
- + #else
- + check(memcmp("a\203", "a\003", 2) > 0, 6);
- + #endif
- check(memcmp("abce", "abcd", 3) == 0, 7); /* Count limited. */
- check(memcmp("abc", "def", 0) == 0, 8); /* Zero count. */
-
-